home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _75F720E083194F25A6EEF99AD6F93A64 < prev    next >
Encoding:
Text File  |  2005-11-27  |  725 b   |  38 lines

  1. shader()
  2. {
  3.     cull("none")
  4.     sortweight("sprite")
  5.  
  6.     pass()
  7.     {
  8.         pixelshader("ProcessColor.psh")
  9.  
  10.         tmu()
  11.         {
  12.             texture()
  13.             {
  14.                 mapchannel(0)
  15.                 usermap(0)
  16.  
  17.                 addressfunc("clamp", "clamp", "clamp")
  18.                 filtering("no_filtering")
  19.             }
  20.         }
  21.         tmu()
  22.         {
  23.             texture()
  24.             {
  25.                 mapchannel(0)
  26.                 usermap(1)
  27.  
  28.                 addressfunc("clamp", "clamp", "clamp")
  29.                 filtering("no_filtering")
  30.             }
  31.         }
  32.         BlendFunc("src_alpha", "inv_src_alpha")
  33.         depthfunc("always", 0)
  34.         nofog()
  35.     }
  36. }
  37.  
  38.